File | Size |
---|
02/approaching-object-oriented-programming-slides.pdf | 858.22 kB |
03. Working with Objects/01. Using Objects.mp4 | 5.55 MB |
03. Working with Objects/01. Using Objects.vtt | 5.57 kB |
03. Working with Objects/02. Objects Under the Hood.mp4 | 3.62 MB |
03. Working with Objects/02. Objects Under the Hood.vtt | 4.22 kB |
03. Working with Objects/03. More About References.mp4 | 1.98 MB |
03. Working with Objects/03. More About References.vtt | 2.07 kB |
03. Working with Objects/04. The Dreaded Null Reference.mp4 | 3.39 MB |
03. Working with Objects/04. The Dreaded Null Reference.vtt | 4.18 kB |
03. Working with Objects/05. Aliasing Objects.mp4 | 4.29 MB |
03. Working with Objects/05. Aliasing Objects.vtt | 4.21 kB |
03. Working with Objects/06. Passing Objects.mp4 | 6.00 MB |
03. Working with Objects/06. Passing Objects.vtt | 5.86 kB |
03. Working with Objects/07. Identity and Equality.mp4 | 4.53 MB |
03. Working with Objects/07. Identity and Equality.vtt | 4.89 kB |
03. Working with Objects/08. Reviewing Identity and Equality.mp4 | 2.14 MB |
03. Working with Objects/08. Reviewing Identity and Equality.vtt | 1.79 kB |
03. Working with Objects/09. The Meaning of Constants.mp4 | 2.99 MB |
03. Working with Objects/09. The Meaning of Constants.vtt | 3.42 kB |
03. Working with Objects/10. Autoboxing.mp4 | 5.91 MB |
03. Working with Objects/10. Autoboxing.vtt | 5.74 kB |
03. Working with Objects/11. Recapping This Module.mp4 | 2.29 MB |
03. Working with Objects/11. Recapping This Module.vtt | 2.32 kB |
03/demos/com/pluralsight/alarms/Alarm.java | 842.00 B |
03/demos/com/pluralsight/alarms/Aliasing.java | 333.00 B |
03/demos/com/pluralsight/alarms/AutoboxingAndUnboxing.java | 414.00 B |
03/demos/com/pluralsight/alarms/EqualityAndIdentity.java | 329.00 B |
03/demos/com/pluralsight/alarms/FinalDoesNotMeanImmutable.java | 278.00 B |
03/demos/com/pluralsight/alarms/NoAliasingForPrimitives.java | 281.00 B |
03/demos/com/pluralsight/alarms/UsingObjects.java | 416.00 B |
03/working-with-objects-slides.pdf | 478.29 kB |
04. Defining Your Own Classes/01. Defining a Class.mp4 | 3.26 MB |
04. Defining Your Own Classes/01. Defining a Class.vtt | 3.39 kB |
04. Defining Your Own Classes/02. Declaring a Field.mp4 | 1.77 MB |
04. Defining Your Own Classes/02. Declaring a Field.vtt | 1.86 kB |
04. Defining Your Own Classes/03. Defining a Method.mp4 | 2.73 MB |
04. Defining Your Own Classes/03. Defining a Method.vtt | 2.81 kB |
04. Defining Your Own Classes/04. A Development Story.mp4 | 3.37 MB |
04. Defining Your Own Classes/04. A Development Story.vtt | 2.61 kB |
04. Defining Your Own Classes/05. Adding Features to the Class.mp4 | 6.68 MB |
04. Defining Your Own Classes/05. Adding Features to the Class.vtt | 4.91 kB |
04. Defining Your Own Classes/06. Null Strikes Again.mp4 | 5.60 MB |
04. Defining Your Own Classes/06. Null Strikes Again.vtt | 4.27 kB |
04. Defining Your Own Classes/07. Initializing Fields.mp4 | 3.12 MB |
04. Defining Your Own Classes/07. Initializing Fields.vtt | 2.45 kB |
04. Defining Your Own Classes/08. Constructors.mp4 | 3.96 MB |
04. Defining Your Own Classes/08. Constructors.vtt | 3.32 kB |
04. Defining Your Own Classes/09. Final Fields.mp4 | 5.63 MB |
04. Defining Your Own Classes/09. Final Fields.vtt | 4.34 kB |
04. Defining Your Own Classes/10. More About Constructors.mp4 | 5.58 MB |
04. Defining Your Own Classes/10. More About Constructors.vtt | 4.56 kB |
04. Defining Your Own Classes/11. What About Destructors.mp4 | 4.44 MB |
04. Defining Your Own Classes/11. What About Destructors.vtt | 5.31 kB |
04. Defining Your Own Classes/12. The First Pillar.mp4 | 2.97 MB |
04. Defining Your Own Classes/12. The First Pillar.vtt | 3.19 kB |
04. Defining Your Own Classes/13. Recapping This Module.mp4 | 1.49 MB |
04. Defining Your Own Classes/13. Recapping This Module.vtt | 1.67 kB |
04/defining-your-own-classes-slides.pdf | 530.98 kB |
04/demos/com/pluralsight/alarms/Alarm.java | 637.00 B |
04/demos/com/pluralsight/alarms/Program.java | 218.00 B |
05. Hiding Information/01. Access Modifiers.mp4 | 6.43 MB |
05. Hiding Information/01. Access Modifiers.vtt | 4.80 kB |
05. Hiding Information/02. A Look Back at Our Code.mp4 | 2.01 MB |
05. Hiding Information/02. A Look Back at Our Code.vtt | 1.32 kB |
05. Hiding Information/03. Snoozing the Alarm.mp4 | 1.72 MB |
05. Hiding Information/03. Snoozing the Alarm.vtt | 1.65 kB |
05. Hiding Information/04. Implementing Snoozing.mp4 | 7.90 MB |
05. Hiding Information/04. Implementing Snoozing.vtt | 4.00 kB |
05. Hiding Information/05. Testing the Snoozing.mp4 | 4.95 MB |
05. Hiding Information/05. Testing the Snoozing.vtt | 2.07 kB |
05. Hiding Information/06. Our Code Doesnt Cut It.mp4 | 3.55 MB |
05. Hiding Information/06. Our Code Doesnt Cut It.vtt | 2.32 kB |
05. Hiding Information/07. A Reason to Control Access.mp4 | 3.83 MB |
05. Hiding Information/07. A Reason to Control Access.vtt | 2.72 kB |
05. Hiding Information/08. Interface and Implementation.mp4 | 7.19 MB |
05. Hiding Information/08. Interface and Implementation.vtt | 4.96 kB |
05. Hiding Information/09. Fields vs. Properties.mp4 | 7.39 MB |
05. Hiding Information/09. Fields vs. Properties.vtt | 3.93 kB |
05. Hiding Information/10. The Second Pillar.mp4 | 3.43 MB |
05. Hiding Information/10. The Second Pillar.vtt | 2.99 kB |
05. Hiding Information/11. Recapping This Module.mp4 | 1.60 MB |
05. Hiding Information/11. Recapping This Module.vtt | 1.77 kB |
05/demos/com/pluralsight/alarms/Alarm.java | 1.53 kB |
05/hiding-information-slides.pdf | 703.62 kB |
06/designing-with-abstraction-and-encapsulation-slides.pdf | 485.87 kB |
07. Inheriting from Another Class/01. Another Kind of Alarm.mp4 | 4.26 MB |
07. Inheriting from Another Class/01. Another Kind of Alarm.vtt | 4.30 kB |
07. Inheriting from Another Class/02. Subclassing the Alarm.mp4 | 3.85 MB |
07. Inheriting from Another Class/02. Subclassing the Alarm.vtt | 2.70 kB |
07. Inheriting from Another Class/03. Superclasses and Constructors.mp4 | 6.27 MB |
07. Inheriting from Another Class/03. Superclasses and Constructors.vtt | 4.73 kB |
07. Inheriting from Another Class/04. Overriding Methods.mp4 | 4.98 MB |
07. Inheriting from Another Class/04. Overriding Methods.vtt | 3.40 kB |
07. Inheriting from Another Class/05. Encapsulation Meets Inheritance.mp4 | 4.54 MB |
07. Inheriting from Another Class/05. Encapsulation Meets Inheritance.vtt | 3.28 kB |
07. Inheriting from Another Class/06. Testing the Subclass.mp4 | 3.33 MB |
07. Inheriting from Another Class/06. Testing the Subclass.vtt | 1.94 kB |
07. Inheriting from Another Class/07. Cleaning Up the Subclass.mp4 | 14.61 MB |
07. Inheriting from Another Class/07. Cleaning Up the Subclass.vtt | 5.00 kB |
07. Inheriting from Another Class/08. The Singly Rooted Hierarchy.mp4 | 8.63 MB |
07. Inheriting from Another Class/08. The Singly Rooted Hierarchy.vtt | 4.44 kB |
07. Inheriting from Another Class/09. [final] Strikes Back.mp4 | 6.74 MB |
07. Inheriting from Another Class/09. [final] Strikes Back.vtt | 5.63 kB |
07. Inheriting from Another Class/10. Sealed Classes.mp4 | 6.75 MB |
07. Inheriting from Another Class/10. Sealed Classes.vtt | 4.40 kB |
07. Inheriting from Another Class/11. Wrapping up Inheritance.mp4 | 1.87 MB |
07. Inheriting from Another Class/11. Wrapping up Inheritance.vtt | 1.83 kB |
07/demos/com/pluralsight/alarms/Alarm.java | 1.50 kB |
07/demos/com/pluralsight/alarms/HighVisibilityAlarm.java | 570.00 B |
07/demos/com/pluralsight/alarms/PrioritizedAlarm.java | 424.00 B |
07/inheriting-from-another-class-slides.pdf | 463.99 kB |
08/demos/m08/com/pluralsight/alarms/Alarm.java | 1.29 kB |
08/demos/m08/com/pluralsight/alarms/Dashboard.java | 782.00 B |
08/demos/m08/com/pluralsight/alarms/Downcasting.java | 375.00 B |
08/demos/m08/com/pluralsight/alarms/HighVisibilityAlarm.java | 388.00 B |
08/demos/m08/com/pluralsight/alarms/PrioritizedAlarm.java | 301.00 B |
08/demos/m08/com/pluralsight/alarms/TimeSensitiveAlarm.java | 434.00 B |
08/demos/m08/DS_Store | 6.00 kB |
08/understanding-polymorphism-slides.pdf | 788.65 kB |
09/demos/com/pluralsight/alarms/Alarm.java | 1.60 kB |
09/demos/com/pluralsight/alarms/HighVisibilityAlarm.java | 488.00 B |
09/demos/com/pluralsight/alarms/PersistentObject.java | 89.00 B |
09/demos/com/pluralsight/alarms/PrioritizedAlarm.java | 400.00 B |
09/demos/com/pluralsight/alarms/Program.java | 606.00 B |
09/demos/com/pluralsight/alarms/Widget.java | 88.00 B |
09/talking-to-interfaces-slides.pdf | 717.52 kB |
1. Course Overview/1. Course Overview.mp4 | 2.96 MB |
1. Course Overview/1. Course Overview.vtt | 2.53 kB |
10. Designing with Inheritance and Polymorphism/1. More Design Talk.mp4 | 1.10 MB |
10. Designing with Inheritance and Polymorphism/1. More Design Talk.vtt | 1.10 kB |
10. Designing with Inheritance and Polymorphism/2. Inheritance Is About Upcasting.mp4 | 6.95 MB |
10. Designing with Inheritance and Polymorphism/2. Inheritance Is About Upcasting.vtt | 7.22 kB |
10. Designing with Inheritance and Polymorphism/3. Dont Check for Types.mp4 | 7.32 MB |
10. Designing with Inheritance and Polymorphism/3. Dont Check for Types.vtt | 4.40 kB |
10. Designing with Inheritance and Polymorphism/4. Wrapping It Up.mp4 | 2.68 MB |
10. Designing with Inheritance and Polymorphism/4. Wrapping It Up.vtt | 2.21 kB |
10/designing-with-inheritance-and-polymorphism-slides.pdf | 309.94 kB |
11. Using the static Keyword/1. Static Members.mp4 | 6.17 MB |
11. Using the static Keyword/1. Static Members.vtt | 5.00 kB |
11. Using the static Keyword/2. Mixing Static and Non-static.mp4 | 4.11 MB |
11. Using the static Keyword/2. Mixing Static and Non-static.vtt | 2.89 kB |
11. Using the static Keyword/3. Global Variables and Global Constants.mp4 | 3.71 MB |
11. Using the static Keyword/3. Global Variables and Global Constants.vtt | 2.21 kB |
11. Using the static Keyword/4. More Ways to Use [static].mp4 | 6.70 MB |
11. Using the static Keyword/4. More Ways to Use [static].vtt | 4.38 kB |
11. Using the static Keyword/5. Beware Static Members.mp4 | 3.32 MB |
11. Using the static Keyword/5. Beware Static Members.vtt | 3.51 kB |
11/demos/com/pluralsight/alarms/Alarm.java | 302.00 B |
11/demos/com/pluralsight/alarms/Example.java | 138.00 B |
11/demos/com/pluralsight/alarms/Program.java | 132.00 B |
11/using-the-static-keyword-slides.pdf | 232.23 kB |
12. Wrapping up This Training/1. A Few Things We Skipped.mp4 | 7.70 MB |
12. Wrapping up This Training/1. A Few Things We Skipped.vtt | 7.37 kB |
12. Wrapping up This Training/2. A Summary of this Training.mp4 | 3.40 MB |
12. Wrapping up This Training/3. See You!.mp4 | 1,001.15 kB |
12. Wrapping up This Training/3. See You!.vtt | 1.19 kB |
12/wrapping-up-this-training-slides.pdf | 256.77 kB |
2. Approaching Object-oriented Programming/1. Welcome to OOP.mp4 | 2.34 MB |
2. Approaching Object-oriented Programming/1. Welcome to OOP.vtt | 2.30 kB |
2. Approaching Object-oriented Programming/2. OOP in 6 Minutes.mp4 | 10.59 MB |
2. Approaching Object-oriented Programming/2. OOP in 6 Minutes.vtt | 9.01 kB |
2. Approaching Object-oriented Programming/3. The Object-oriented Debate.mp4 | 3.29 MB |
2. Approaching Object-oriented Programming/3. The Object-oriented Debate.vtt | 3.02 kB |
2. Approaching Object-oriented Programming/4. Mechanics and Design.mp4 | 2.96 MB |
2. Approaching Object-oriented Programming/4. Mechanics and Design.vtt | 2.57 kB |
2. Approaching Object-oriented Programming/5. Inside This Training.mp4 | 2.24 MB |
2. Approaching Object-oriented Programming/5. Inside This Training.vtt | 2.57 kB |
6. Designing with Abstraction and Encapsulation/1. What Design Is About.mp4 | 2.46 MB |
6. Designing with Abstraction and Encapsulation/1. What Design Is About.vtt | 2.31 kB |
6. Designing with Abstraction and Encapsulation/2. Getting from Problem to Code.mp4 | 5.02 MB |
6. Designing with Abstraction and Encapsulation/2. Getting from Problem to Code.vtt | 3.88 kB |
6. Designing with Abstraction and Encapsulation/3. A Few Guidelines.mp4 | 7.67 MB |
6. Designing with Abstraction and Encapsulation/3. A Few Guidelines.vtt | 5.01 kB |
8. Understanding Polymorphism/1. The [Is-a] Relationship.mp4 | 3.66 MB |
8. Understanding Polymorphism/1. The [Is-a] Relationship.vtt | 3.57 kB |
8. Understanding Polymorphism/2. Putting [Is-a] to the Test.mp4 | 4.60 MB |
8. Understanding Polymorphism/2. Putting [Is-a] to the Test.vtt | 3.18 kB |
8. Understanding Polymorphism/3. Upcasting.mp4 | 7.08 MB |
8. Understanding Polymorphism/3. Upcasting.vtt | 6.29 kB |
8. Understanding Polymorphism/4. Enter Polymorphism.mp4 | 6.73 MB |
8. Understanding Polymorphism/4. Enter Polymorphism.vtt | 5.45 kB |
8. Understanding Polymorphism/5. Writing Extensible Code.mp4 | 9.78 MB |
8. Understanding Polymorphism/5. Writing Extensible Code.vtt | 5.43 kB |
8. Understanding Polymorphism/6. Polymorphism Is Everywhere.mp4 | 8.73 MB |
8. Understanding Polymorphism/6. Polymorphism Is Everywhere.vtt | 5.62 kB |
8. Understanding Polymorphism/7. Downcasting.mp4 | 8.11 MB |
8. Understanding Polymorphism/7. Downcasting.vtt | 5.01 kB |
8. Understanding Polymorphism/8. Wrapping up Polymorphism.mp4 | 1.92 MB |
8. Understanding Polymorphism/8. Wrapping up Polymorphism.vtt | 2.11 kB |
9. Talking to Interfaces/1. An Insight Into Alarms.mp4 | 7.54 MB |
9. Talking to Interfaces/1. An Insight Into Alarms.vtt | 4.82 kB |
9. Talking to Interfaces/2. Going Abstract.mp4 | 9.42 MB |
9. Talking to Interfaces/2. Going Abstract.vtt | 5.42 kB |
9. Talking to Interfaces/3. Hierarchy Headache.mp4 | 5.50 MB |
9. Talking to Interfaces/3. Hierarchy Headache.vtt | 5.29 kB |
9. Talking to Interfaces/4. Playing Multiple Roles.mp4 | 9.93 MB |
9. Talking to Interfaces/4. Playing Multiple Roles.vtt | 6.66 kB |
9. Talking to Interfaces/5. Interfaces Are Constrained.mp4 | 8.67 MB |
9. Talking to Interfaces/5. Interfaces Are Constrained.vtt | 8.97 kB |
9. Talking to Interfaces/6. Wrapping Up this Module.mp4 | 2.42 MB |
9. Talking to Interfaces/6. Wrapping Up this Module.vtt | 3.00 kB |
OneHack.Us - Free Tutorials, Guides, Courses, Community Forum & more!.txt | 130.00 B |
Onehack.us - Together we learn!.url | 246.00 B |